home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / STRNCAT.C < prev    next >
Text File  |  1980-01-10  |  384b  |  11 lines

  1. /*
  2. ** append s2 to s1, truncating at n characters if necessary
  3. */
  4. strncat(s1, s2, n) char *s1, *s2; int n; {
  5.   char *strncat;
  6.   strncat = s1;
  7.   while(*s1) s1++;
  8.   while(n--) if(!(*s1++ = *s2++)) break;
  9.   return strncat;
  10.   }
  11.